home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / Sample Code / Games / SprocketInvaders / Source / MoviePlayback.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-28  |  599 b   |  26 lines  |  [TEXT/MPS ]

  1. #ifndef __MOVIEPLAYBACK__
  2. #define __MOVIEPLAYBACK__
  3.  
  4. //•    ----------------------------------------    Includes
  5. //•    ----------------------------------------    Definitions
  6. //•    ----------------------------------------    Types
  7. //•    ----------------------------------------    Public Variables
  8.  
  9. extern FSSpec    gMovieSpec;
  10.  
  11. //•    ----------------------------------------    Public Functions
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16.  
  17. extern void PlaybackMovie(void);
  18. extern void ServiceMoviePlayback(void);
  19. extern void ShutdownMoviePlayback(void);
  20. extern void SelectBackgroundMovie(void);
  21.  
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25.  
  26. #endif